The JMAppletPage Interface
The JMAppletPage interface contains methods related to creating or manipulating applet pages.
package com.apple.mrj.JManager;
import java.io.IOException;
import java.net.URL;
/**
* a JMAppletPage holds a collection of JMAWTContexts
* which all share the same classloader.
* @see JMAWTContexts
*/
public interface JMAppletPage {
public void addContext(JMAWTContextImpl context);
public JMAppletClassLoader getClassLoader(URL codebase,
ThreadGroup group) throws IOException;
public void flushClassLoader(URL codebase);
}
© 1998 Apple Computer, Inc. — (Last Updated 3 Dec 98)